home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / PD / Anwendungen / ToolManager / Source / Locale / DMakefile < prev    next >
Makefile  |  1998-08-10  |  1KB  |  41 lines

  1. #
  2. # DMakefile  V3.1
  3. #
  4. # Makefile for ToolManager 3.1 (Locale: Library & Tools)
  5. #
  6. # Copyright (C) 1990-98 Stefan Becker
  7. #
  8. # This source code is for educational purposes only. You may study it
  9. # and copy ideas or algorithms from it for your own projects. It is
  10. # not allowed to use any of the source codes (in full or in parts)
  11. # in other programs. Especially it is not allowed to create variants
  12. # of ToolManager or ToolManager-like programs from this source code.
  13. #
  14. LANG  = dansk deutsch français italiano norsk polski português srpski svenska
  15. CDIR  = //Locale/Catalogs/
  16. CATD  = $(LANG:"*":"$(CDIR)*")
  17. CATF  = $(LANG:"*":"$(CDIR)*/toolmanager.catalog")
  18. TRANS = $(LANG:"*":"*.ct")
  19. DESC  = toolmanager.cd
  20. HEAD  = toolmanager.h
  21. EMPTY = empty.ct
  22.  
  23. all : $(HEAD) $(EMPTY) $(CATD) $(CATF)
  24.  
  25. $(HEAD) : $(DESC)
  26.       CatComp $(DESC) CFILE %(left) NOARRAY NOBLOCK NOCODE
  27.  
  28. $(EMPTY) : $(DESC)
  29.       CatComp $(DESC) CTFILE %(left)
  30.  
  31. $(CATF) : $(TRANS)
  32.       CatComp $(DESC) %(right) CATALOG %(left)
  33.  
  34. $(CATF) : $(DESC)
  35.  
  36. $(CATD) : $(CATD)
  37.       MakeDir %(left)
  38.  
  39. clean   :
  40.       -Delete $(HEAD) $(EMPTY)
  41.